-
-
Notifications
You must be signed in to change notification settings - Fork 454
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RFC: use DJANGO_SETTINGS_MODULE from env if available #153
base: master
Are you sure you want to change the base?
Conversation
This avoids setting it in setup.cfg explicitly, and follows the usual pattern of having it defined with Django projects often already. TODO: - [ ] doc
1aeaad9
to
94d6831
Compare
I like this! @mkurnikov what do you think? |
(btw: would help also in case where the env is required already anyway (#166 (comment))) |
@blueyed Maybe add test for it? |
Sure, but likely not in the near future. |
@mkurnikov I don't think that it is a good candidate for My suggestion is to put it into |
Is this still on some release road map? Maybe only falling back to the environ value if no |
This avoids setting it in setup.cfg explicitly, and follows the usual
pattern of having it defined with Django projects often already.
TODO: